home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
programming
/
ixemul-complete
/
ixemul
/
stdlib
/
abort.c
next >
Wrap
C/C++ Source or Header
|
1996-05-08
|
183b
|
12 lines
#define _KERNEL
#include "ixemul.h"
void abort (void)
{
syscall (SYS_kill, 0, SIGABRT);
/* if this should be caught, do exit directly... */
ix_panic ("ABORT!");
exit(20);
}